home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / modules.lha / modules / libraries / nonvolatile.m < prev    next >
Encoding:
Text File  |  2002-01-06  |  310 b   |  22 lines

  1. MODULE 'exec/nodes'
  2.  
  3. OBJECT NVInfo
  4.  MaxStorage:ULONG,
  5.  FreeStorage:ULONG
  6.  
  7. OBJECT NVEntry
  8.  Node:MinNode,
  9.  Name:PTR TO UBYTE,
  10.  Size:ULONG,
  11.  Protection:ULONG
  12.  
  13. FLAG NVE_DELETE,
  14.  NVE_APPNAME=31
  15.  
  16. CONST NVERR_BADNAME=1,
  17.  NVERR_WRITEPROT=2,
  18.  NVERR_FAIL=3,
  19.  NVERR_FATAL=4
  20.  
  21. #define SizeNVData(DataPtr) ((DataPtr[-1])-4)
  22.